home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 19 / Amiga Plus Leser CD 19.iso / Tools / Freeware / ttengine-5.0 / Examples / TextFit / makefile next >
Encoding:
Makefile  |  1980-01-01  |  233 b   |  12 lines

  1. CF = -c -msmall-code -m68020 -fbaserel
  2.  
  3. txfit: txfit.o startup.o
  4.     gcc -o txfit -nostartfiles -noixemul -msmall-code -fbaserel startup.o txfit.o
  5.  
  6. txfit.o: txfit.c
  7.     gcc $(CF) $<
  8.  
  9. startup.o: startup.c
  10.     gcc $(CF) -fwritable-strings $<
  11.  
  12.